home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / robodozer.gsh < prev    next >
Text File  |  2000-09-09  |  1KB  |  44 lines

  1. // defines robodozer
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_ROBODOZER_GSH
  8. #define INCLUDED_ROBODOZER_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. #include "defaults.gsh"
  13. #include "lasers.gsh"
  14. #include "robodozerfrag.gsh"
  15.  
  16. shape Shp_Robodozer
  17. {
  18.     file "objects\robodozer.RIF"
  19.     name "robodozer"
  20. }
  21.  
  22. frag data FrgA_Robodozer    // this creates Rol_Robodozerhalfleft and frag bits
  23. {
  24.     role        Rol_RobodozerfragA
  25.     replace role    Rol_Robodozerhalfleft
  26.     replace         yes                // get rid of the old wall
  27.     scale        10
  28.     symmetric        no
  29. }
  30.  
  31. role Rol_Robodozer : Rol_PlacedObject
  32. {
  33.     shape        Shp_Robodozer
  34.     identifier        "robodozer"
  35.     destructibility    FrgA_Robodozer
  36.     ai        blocker
  37.     armour        22
  38. }
  39.  
  40. ////////////////////////////////////////////////////////////////////////////////////
  41.  
  42. // end wrapper - for preventing multiple or recursive inclusions
  43. #endif // !INCLUDED_ROBODOZER_GSH
  44.